home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / language / macberon.sit / MacOberon 2.4(0) / Compiler.Tool (.txt) < prev    next >
Encoding:
Oberon Text  |  1991-10-17  |  696 b   |  19 lines

  1. Syntax10.Scn.Fnt
  2. Syntax10i.Scn.Fnt
  3. Compiler.Compile *
  4. Compiler.Compile {filename} ~
  5. Compiler.DeleteSym {filename} ~
  6. The Oberon Compiler accepts the following options:
  7.     s    Enable generation of new Symbol File
  8.     x    Disable Index Checks
  9.     n    Disable NIL Checks for Pointers
  10.     p    Disable NIL Checks for Procedure Variables
  11.     t    Disable Type Checks
  12.     g    Suppress Garbage Collection after this Compilation
  13. Each file parameter may be followed by a slash ("/") and a list of options.
  14. If garbage collection is suppressed, compilation runs faster but might not
  15. be completed if too many files or too much memory are used.
  16. Examples:
  17.     Compiler.Compile */n
  18.     Compiler.Compile Test.Mod ~
  19.